github.com/klauspost/compress/fse.Scratch.ct (field)
31 uses
github.com/klauspost/compress/fse (current package)
compress.go#L125: tt := s.ct.symbolTT[:256]
compress.go#L135: c1.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-1]])
compress.go#L136: c2.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-2]])
compress.go#L140: c2.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-1]])
compress.go#L141: c1.init(&s.bw, &s.ct, s.actualTableLog, tt[src[ip-2]])
compress.go#L331: if cap(s.ct.tableSymbol) < tableSize {
compress.go#L332: s.ct.tableSymbol = make([]byte, tableSize)
compress.go#L334: s.ct.tableSymbol = s.ct.tableSymbol[:tableSize]
compress.go#L337: if cap(s.ct.stateTable) < ctSize {
compress.go#L338: s.ct.stateTable = make([]uint16, ctSize)
compress.go#L340: s.ct.stateTable = s.ct.stateTable[:ctSize]
compress.go#L342: if cap(s.ct.symbolTT) < 256 {
compress.go#L343: s.ct.symbolTT = make([]symbolTransform, 256)
compress.go#L345: s.ct.symbolTT = s.ct.symbolTT[:256]
compress.go#L355: tableSymbol := s.ct.tableSymbol[:tableSize]
compress.go#L415: table := s.ct.stateTable
compress.go#L428: symbolTT := s.ct.symbolTT[:s.symbolLen]
decompress.go#L180: if cap(s.ct.tableSymbol) < 256 {
decompress.go#L181: s.ct.tableSymbol = make([]byte, 256)
decompress.go#L183: s.ct.tableSymbol = s.ct.tableSymbol[:256]
decompress.go#L185: if cap(s.ct.stateTable) < 256 {
decompress.go#L186: s.ct.stateTable = make([]uint16, 256)
decompress.go#L188: s.ct.stateTable = s.ct.stateTable[:256]
decompress.go#L196: symbolNext := s.ct.stateTable[:256]
decompress.go#L273: var tmp = s.ct.tableSymbol[:256]
fse.go#L52: ct cTable // Compression tables.
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |